testing.common.output (field)
23 uses
testing (current package)
benchmark.go#L237: fmt.Fprintf(b.w, "--- FAIL: %s\n%s", b.name, b.output)
benchmark.go#L250: if b.chatty != nil && (len(b.output) > 0 || finished) {
benchmark.go#L252: fmt.Fprintf(b.w, "--- %s: %s\n%s", tag, b.name, b.output)
benchmark.go#L594: fmt.Fprintf(b.w, "--- FAIL: %s\n%s", benchName, b.output)
benchmark.go#L607: if len(b.output) > 0 {
benchmark.go#L609: fmt.Fprintf(b.w, "--- BENCH: %s\n%s", benchName, b.output)
benchmark.go#L711: for nlCount, j := 0, 0; j < len(b.output); j++ {
benchmark.go#L712: if b.output[j] == '\n' {
benchmark.go#L715: b.output = append(b.output[:j], "\n\t... [output truncated]\n"...)
testing.go#L491: output []byte // Output generated by test or benchmark.
testing.go#L690: if len(c.output) > 0 {
testing.go#L692: args = append(args[:len(args):len(args)], c.output)
testing.go#L693: c.output = c.output[:0] // but why?
testing.go#L730: w.c.output = append(w.c.output, indent...)
testing.go#L731: w.c.output = append(w.c.output, b[:end]...)
testing.go#L883: parent.output = append(parent.output, parent.decorate(s, depth+1)...)
testing.go#L900: c.output = append(c.output, c.decorate(s, depth+1)...)